home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / packages / CoreAppPackage / BaseFormU.dfm / BaseFormU.txt
Encoding:
Text File  |  1999-04-22  |  1014 b   |  45 lines

  1. object BaseForm: TBaseForm
  2.   Left = 490
  3.   Top = 108
  4.   BorderStyle = bsSingle
  5.   Caption = 'Base Form'
  6.   ClientHeight = 223
  7.   ClientWidth = 455
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Label1: TLabel
  17.     Left = 86
  18.     Top = 24
  19.     Width = 282
  20.     Height = 65
  21.     Alignment = taCenter
  22.     Caption = 
  23.       'This is a form used by the application under all nomal circumsta' +
  24.       'nces. However, if you load up the BLInheritedForm package, you g' +
  25.       'et access to a new form inherited from this one, which the origi' +
  26.       'nal application knows nothing about.'
  27.     WordWrap = True
  28.   end
  29.   object BtnOK: TButton
  30.     Left = 16
  31.     Top = 184
  32.     Width = 75
  33.     Height = 25
  34.     Caption = '&OK'
  35.     TabOrder = 0
  36.     OnClick = BtnOKClick
  37.   end
  38.   object Timer1: TTimer
  39.     Interval = 10
  40.     OnTimer = Timer1Timer
  41.     Left = 40
  42.     Top = 112
  43.   end
  44. end
  45.